// This test is outdated and needs an overhaul. describe('Basic', () => { it('can request access without errors', () => { const now = new Date().getTime(); const name = `User ${now}`; const email = `user-${now}@example.com`; cy.visit('/'); // Check the main title shows cy.get('p').first().contains('SunsamaSplash Test'); // Fill out the form cy.get('input#name').type(name); cy.get('input#email').type(email); cy.get('button#request-access').click(); // Confirm the submission worked cy.url().should('include', '/start/trial-ready'); }); });